home *** CD-ROM | disk | FTP | other *** search
- ;
- ; QPEG video driver
- ; for Tseng Labs ET4000-W32 chipsets,
- ; supports up to 4 Mb of video memory.
- ; Thanks to German c't Magazine for the info.
- ;
-
- .286
- Code Segment Para 'Code'
- Assume cs:Code
- Org 100h
-
- Procs dw Bank,Init,Exit,0
-
- Bank: push ax
- and al,0fh ; bit 0-3
- mov dl,al
- shl al,4
- or al,dl
- mov dx,03cdh
- out dx,al
- pop ax
- and al,0f0h ; bit 4-5
- mov dl,al
- shr al,4
- or al,dl
- mov dx,03cbh
- out dx,al
- retf
-
- Init: retf
-
- Exit: retf
-
- Code Ends
- End Procs
-
- ; End of source.
-